@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rock+Salt&display=swap');


html {
    scroll-behavior: smooth;
}

/*BODY*/

#section-00 {
    width: 100%;
    height: 100vh;
    background-image: url("../0 - IMAGES/simone-spiaggia-nera.png");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}
#explore-button {
    align-content: center;
    background-color: #050206;
    border: 1px #CCCDC7 solid;
    border-radius: 25px;
    color: #CCCDC7;
    cursor: pointer;
    height: 3rem;
    margin: auto;
    margin-bottom: 3%;
    text-align: center;
    width: 7rem;
}

body {
    background-color: #050206;
    margin: 0;
    padding: 0;
}

#section-01 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.left-main {
    width: 50%;
    margin-top: 20%;
    text-align: center;
}
.right-main {
    display: flex;
    flex-direction: row;
    margin-bottom: 5em;
    width: 50%;
}
.carousel {
    display: flex;
    flex-direction: column;
    gap: 4em;
    height: auto;
    margin-top: 10em;
    padding: 5%;
    width: 50%;
}
.right-carousel {
    margin-top: 22em;
}
.area {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column-reverse;
    height: 24em;
    padding-left: 1.5em;
    border-radius: 25px;
    color: #CCCDC7;
}

#music-area {
    background-image: url("../0 - IMAGES/musica-monet.png");
}
#journalism-area {
    background-image: url("../0 - IMAGES/articles-monet.png");
}
#startup-area {
    background-image: url("../0 - IMAGES/startup-monet.png");
}

/*QUERIES*/

@media screen and (max-width: 1440px) {
    
}
@media screen and (max-width: 1000px) {
    #section-01 {
        flex-direction: column;
    }
    .left-main {
        width: 100%;
        margin-top: 10%;
    }
    .right-main {
        width: 100%;
        margin-bottom: 2em;
    }
    .carousel {
        width: 100%;
        margin-top: 5em;
        padding: 2%;
        gap: 2em;
    }
    .area {
        height: 20em;
    }
}

@media screen and (max-width: 600px) {
    .area {
        height: 15em;
    }
}